home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / mail / smail-3.1.28 / samples / queryprog / Makefile next >
Encoding:
Makefile  |  1992-09-05  |  706 b   |  39 lines

  1. #!/bin/make -f
  2. # @(#)samples/queryprog/Makefile    1.4 9/6/92 04:40:11
  3. # Makefile for the generic configuration file samples
  4. #
  5. #    Copyright (C) 1987, 1988 Ronald S. Karr and Landon Curt Noll
  6. #    Copyright (C) 1992  Ronald S. Karr
  7. # See the file COPYING, distributed with smail, for restriction
  8. # and warranty information.
  9.  
  10. SHELL=/bin/sh
  11. MAKE=make
  12. GET=sccs get
  13. AR=ar
  14. LINT=lint
  15. CC=cc
  16. CLEAN=sccs clean
  17. MK=${MAKE} -${MAKEFLAGS} SHELL=${SHELL}
  18. SRC_PREFIX=
  19.  
  20. ROOT=../..
  21. CONFSRC=routers query.sh
  22. MISCSRC=Makefile
  23. SRC=${OSSRC} ${MISCSRC}
  24.  
  25. all install depend clean clobber:
  26.  
  27. sources: ${SRC}
  28.  
  29. ${SRC}:
  30.     ${GET} $@
  31.  
  32. names:
  33.     @for i in ${SRC}; do echo ${SRC_PREFIX}$$i; done
  34.  
  35. nuke:    clobber
  36.     -${CLEAN}
  37.     -${GET} Makefile
  38.